protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
mForegroundDrawable.setBounds(mCachedBounds);
mForegroundDrawable.draw(canvas);
}
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
if (mForegroundDrawable != null) {
mForegroundDrawable.setBounds(mCachedBounds);
mForegroundDrawable.draw(canvas);
}
}